*{
	margin: 0;
	padding: 0; 
	font-family: centur Gothic;

}

/* navigation bar */
nav {
	position: relative;
	background-size: cover;
	height: 80px;
	width: 100%;
	background-color: black;
	justify-content: space-between;
	align-items: center;
	display: flex;
}
.logo img{
	margin-top: 7px;
	cursor: pointer;
	margin-left: 30px;
	border-radius: 20px;
	height: 60px;
	width: 80px;
}

.logo-banner img{
	width: 100%;
	height: 200px;
	margin-top: 0px;
	position: relative;
	border-bottom: 5px solid red;
}


.MENU{
	height: 100%;
	width: 80%;
	text-align: center;
}

/*navigation bar paragraph*/
.MENU ul li{
	list-style: none;
	display: inline-block;
	position: relative;
	margin-left:5vh;
	margin-top: 4vh;	
}

.MENU ul li a{
	color: white;
	font-family: 'Smooch Sans', sans-serif;
	text-decoration: none;
	padding: 2vh;
}

nav .MENU ul li a:hover{
	background-color: #ffffffba;
	color: red;
	transition: 0.5s;
}

nav .fa{
	display: none;
}

footer{
	width: 100%;
	height: 100px;
	text-align: center;
	background-color: black;
	position: relative;
	right: 0px;
	bottom: 0px;
	padding-top: 30px 0;
	padding-bottom: 30px;
}


footer .fa{
	color: white;
	padding: 10px;
	cursor: pointer;
}

footer .fa:hover{
	color: red;
	transition: 0.5s;
}

.up-scroller{

	position: fixed;
	height: 35px;
	width: 35px;
	background-color: red;
	bottom: 30px;
	right: 30px;
	cursor: pointer;
	color: white;
	text-align: center;
	line-height: 35px;
	border: 2px solid #ffffffba; 
}


.main-material{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.main-material h1{
	font-size: 36px;
	font-weight: 600;
}

.main-material p{
	font-size: 14px;
	font-weight: 380;
	line-height: 22px;
	padding: 10px;
}

.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.row a{
	text-decoration: none;
	color: black;
	flex-basis: 31%;
}


.column{
	background: #97b9f3;
	border: 2px solid #699ef9;
	border border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
}

.column h3{
	font-weight: 600;
	margin: 10px;
}

.main-material h2{
	font-weight: 600;
	padding-top: 30px;
}

.column:hover{
	box-shadow: 0 0 20px 0px #4d8af3;
	transition: 0.5s;
}

.column ul{
	text-decoration: underline;
	color: red;
	font-weight: bold;
	padding: 20px;
}











.my-details{
	padding: 20px;
	
}



.my-details a{
	text-decoration: none;
	padding: 20px;
	color: white;
	
}

.my-details a:hover{
	color: red;
	transition: 0.4s;

}

@media(max-width: 1080px){
	nav {
	position: relative;
	height: 12%;
	width: 100%;
	background-color: black;
	justify-content: space-between;
	align-items: center;
	display: flex;

	}
	.MENU{
		position: fixed;
		z-index: 2;
		background: #c50707;
		height: 100vh;
		width: 250px;
		top: 0;
		right: -250px;
		text-align: left;
		transition: 0.5s;
	}

	.MENU ul{
		padding: 2px;
	}
	.MENU ul li{
		display: block;
	}

	nav .fa{
		display: block;
		color: white;
		margin: 15px;
		font-size: 22px;
		cursor: pointer;
	}

	.row{
		flex-direction: column;
	}
}